replacing each space in a string javascript

115

replacing each space in a string javascript -

const name = 'Hi my name is Flavio'
name.replace(/\s/g, '') //HimynameisFlavio

Comments

Submit
0 Comments